#include<stdio.h>
#include<math.h>
int main() {
	printf("Pi = %0.10f\n", 4 * atan(1.0));
	printf("Pi = %0.10f", acos(-1.0));
	return 0;
}
